From 59df7b5404c171a415575f1df9686aec8e8ac869 Mon Sep 17 00:00:00 2001 From: "iap10@labyrinth.cl.cam.ac.uk" Date: Tue, 4 May 2004 21:57:10 +0000 Subject: [PATCH] bitkeeper revision 1.891 (409811b6YsMa5sqRfO6eja3WkihxHA) Move Xen network and block drivers into the DRIVERS target rather than CORE_FILES, so they're initialised slightly later in boot order. This fixes a problem where /dev/random blocked forever becuase entropy from device interupts was getting lost. --- xenolinux-2.4.26-sparse/arch/xen/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xenolinux-2.4.26-sparse/arch/xen/Makefile b/xenolinux-2.4.26-sparse/arch/xen/Makefile index d799c003bb..23a79a61af 100644 --- a/xenolinux-2.4.26-sparse/arch/xen/Makefile +++ b/xenolinux-2.4.26-sparse/arch/xen/Makefile @@ -67,11 +67,11 @@ CORE_FILES += arch/xen/kernel/kernel.o arch/xen/mm/mm.o CORE_FILES += arch/xen/drivers/evtchn/drv.o CORE_FILES += arch/xen/drivers/console/drv.o ifdef CONFIG_XEN_NEWIO -CORE_FILES += arch/xen/drivers/blkif/drv.o -CORE_FILES += arch/xen/drivers/netif/drv.o +DRIVERS += arch/xen/drivers/blkif/drv.o +DRIVERS += arch/xen/drivers/netif/drv.o else -CORE_FILES += arch/xen/drivers/block/drv.o -CORE_FILES += arch/xen/drivers/network/drv.o +DRIVERS += arch/xen/drivers/block/drv.o +DRIVERS += arch/xen/drivers/network/drv.o endif ifdef CONFIG_XEN_PRIVILEGED_GUEST CORE_FILES += arch/xen/drivers/dom0/drv.o -- 2.30.2